home *** CD-ROM | disk | FTP | other *** search
- on initRearWindow
- global rwObj, gMaxColors, deskTopPattern, black
- if factory("RearWindow") = 0 then
- openXLib("RearWindow.XObj")
- end if
- if objectp(rwObj) then
- rwObj(mdispose)
- end if
- makeObjIfNeeded()
- end
-
- on releaseRearWindow
- global rwObj
- if objectp(rwObj) then
- rwObj(mdispose)
- end if
- closeXLib()
- put " " into field "stage&Screen"
- put " " into field "colorIndex"
- end
-
- on makeObjIfNeeded
- global rwObj
- if not objectp(rwObj) then
- set rwObj to RearWindow(mnew, "M")
- if value(rwObj) < 0 then
- alert("System error" && rwObj && "trying to create the RearWindow object in RAM (multiple-monitor config).")
- stopMovie()
- exit
- end if
- if the freeBlock < rwObj(mGetMemoryNeeded) then
- if objectp(rwObj) then
- rwObj(mdispose)
- set rwObj to RearWindow(mnew, "S")
- end if
- if value(rwObj) < 0 then
- alert("System error" && rwObj && "trying to create the RearWindow object in RAM (single-monitor config).")
- stopMovie()
- exit
- end if
- end if
- end if
- put rwObj
- end
-
- on FillWithIndexColor
- global rwObj
- makeObjIfNeeded()
- set patVar to 255
- rwObj(mIndexColorToWindow, patVar)
- end
-